home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / lmerrlog.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  37.8 KB  |  1,270 lines

  1. /*++ BUILD Version: 0002    // Increment this if a change has global effects
  2.  
  3. Copyright (c) 1991-1996  Microsoft Corporation
  4.  
  5. Module Name:
  6.  
  7.     lmerrlog.h
  8.  
  9. Abstract:
  10.  
  11.     This module defines the API function prototypes and data structures
  12.     for the following groups of NT API functions:
  13.         NetErrorLog
  14.  
  15. Environment:
  16.  
  17.     User Mode - Win32
  18.  
  19. Notes:
  20.  
  21.     You must include NETCONS.H before this file, since this file depends
  22.     on values defined in NETCONS.H.
  23.  
  24. --*/
  25.  
  26. /*
  27.  *      C/C++ Run Time Library - Version 9.0
  28.  *
  29.  *      Copyright (c) 1997, 1998 by Borland International
  30.  *      All Rights Reserved.
  31.  *
  32.  */
  33.  
  34. #ifndef _LMERRLOG_
  35. #define _LMERRLOG_
  36. #pragma option push -b
  37.  
  38.  
  39. #ifdef __cplusplus
  40. extern "C" {
  41. #endif
  42.  
  43. //
  44. // Data Structures - Config
  45. //
  46.  
  47. typedef struct _ERROR_LOG {
  48.      DWORD         el_len;
  49.      DWORD         el_reserved;
  50.      DWORD         el_time;
  51.      DWORD         el_error;
  52.      LPWSTR        el_name;             // pointer to service name
  53.      LPWSTR        el_text;             // pointer to string array
  54.      LPBYTE        el_data;             // pointer to BYTE array
  55.      DWORD         el_data_size;        // byte count of el_data area
  56.      DWORD         el_nstrings;         // number of strings in el_text.
  57. } ERROR_LOG, *PERROR_LOG, *LPERROR_LOG;
  58.  
  59.  
  60. // BUGBUG: Temporary to let users ifdef on this struct layout.
  61. #define REVISED_ERROR_LOG_STRUCT
  62.  
  63.  
  64. #ifndef _LMHLOGDEFINED_
  65. #define _LMHLOGDEFINED_
  66.  
  67. typedef struct _HLOG {
  68.      DWORD          time;
  69.      DWORD          last_flags;
  70.      DWORD          offset;
  71.      DWORD          rec_offset;
  72. } HLOG, *PHLOG, *LPHLOG;
  73.  
  74. #define LOGFLAGS_FORWARD    0
  75. #define LOGFLAGS_BACKWARD   0x1
  76. #define LOGFLAGS_SEEK       0x2
  77.  
  78. #endif
  79.  
  80. //
  81. // Function Prototypes - ErrorLog
  82. //
  83.  
  84. NET_API_STATUS NET_API_FUNCTION
  85. NetErrorLogClear (
  86.     IN LPCWSTR server,
  87.     IN LPCWSTR backupfile,
  88.     IN LPBYTE  reserved
  89.     );
  90.  
  91. NET_API_STATUS NET_API_FUNCTION
  92. NetErrorLogRead (
  93.     IN LPCWSTR server,
  94.     IN LPWSTR  reserved1,
  95.     IN LPHLOG  errloghandle,
  96.     IN DWORD   offset,
  97.     IN LPDWORD reserved2,
  98.     IN DWORD   reserved3,
  99.     IN DWORD offsetflag,
  100.     OUT LPBYTE * bufptr,
  101.     IN DWORD prefmaxlen,
  102.     OUT LPDWORD bytesread,
  103.     OUT LPDWORD totalbytes
  104.     );
  105.  
  106. NET_API_STATUS NET_API_FUNCTION
  107. NetErrorLogWrite (
  108.     IN LPBYTE  reserved1,
  109.     IN DWORD   code,
  110.     IN LPCWSTR component,
  111.     IN LPBYTE  buffer,
  112.     IN DWORD numbytes,
  113.     IN LPBYTE msgbuf,
  114.     IN DWORD strcount,
  115.     IN LPBYTE reserved2
  116.     );
  117.  
  118. //
  119. // Special Values and Constants
  120. //
  121.  
  122.  
  123. //
  124. //  Generic (could be used by more than one service)
  125. //   error log messages from 0 to 25
  126. //
  127. // Do not change the comments following the manifest constants without
  128. // understanding how mapmsg works.
  129. //
  130.  
  131. #define ERRLOG_BASE 3100        /* NELOG errors start here */
  132.  
  133. #define NELOG_Internal_Error        (ERRLOG_BASE + 0)
  134.     /*
  135.     * The operation failed because a network software error occurred.
  136.     */
  137.  
  138. #define NELOG_Resource_Shortage     (ERRLOG_BASE + 1)
  139.     /*
  140.     * The system ran out of a resource controlled by the %1 option.
  141.     */
  142.  
  143. #define NELOG_Unable_To_Lock_Segment    (ERRLOG_BASE + 2)
  144.     /*
  145.     * The service failed to obtain a long-term lock on the
  146.     *  segment for network control blocks (NCBs). The error code is the data.
  147.     */
  148.  
  149. #define NELOG_Unable_To_Unlock_Segment  (ERRLOG_BASE + 3)
  150.     /*
  151.     * The service failed to release the long-term lock on the
  152.     *  segment for network control blocks (NCBs). The error code is the data.
  153.     */
  154.  
  155. #define NELOG_Uninstall_Service     (ERRLOG_BASE + 4)
  156.     /*
  157.     * There was an error stopping service %1.
  158.     *  The error code from NetServiceControl is the data.
  159.     */
  160.  
  161. #define NELOG_Init_Exec_Fail        (ERRLOG_BASE + 5)
  162.     /*
  163.     * Initialization failed because of a system execution failure on
  164.     *  path %1. The system error code is the data.
  165.     */
  166.  
  167. #define NELOG_Ncb_Error         (ERRLOG_BASE + 6)
  168.     /*
  169.     * An unexpected network control block (NCB) was received. The NCB is the data.
  170.     */
  171.  
  172. #define NELOG_Net_Not_Started       (ERRLOG_BASE + 7)
  173.     /*
  174.     * The network is not started.
  175.     */
  176.  
  177. #define NELOG_Ioctl_Error       (ERRLOG_BASE + 8)
  178.     /*
  179.     * A DosDevIoctl or DosFsCtl to NETWKSTA.SYS failed.
  180.     * The data shown is in this format:
  181.     *     DWORD  approx CS:IP of call to ioctl or fsctl
  182.     *     WORD   error code
  183.     *     WORD   ioctl or fsctl number
  184.     */
  185.  
  186. #define NELOG_System_Semaphore      (ERRLOG_BASE + 9)
  187.     /*
  188.     * Unable to create or open system semaphore %1.
  189.     *  The error code is the data.
  190.     */
  191.  
  192. #define NELOG_Init_OpenCreate_Err   (ERRLOG_BASE + 10)
  193.     /*
  194.     * Initialization failed because of an open/create error on the
  195.     *  file %1. The system error code is the data.
  196.     */
  197.  
  198. #define NELOG_NetBios           (ERRLOG_BASE + 11)
  199.     /*
  200.     * An unexpected NetBIOS error occurred.
  201.     *  The error code is the data.
  202.     */
  203.  
  204. #define NELOG_SMB_Illegal       (ERRLOG_BASE + 12)
  205.     /*
  206.     * An illegal server message block (SMB) was received.
  207.     *  The SMB is the data.
  208.     */
  209.  
  210. #define NELOG_Service_Fail      (ERRLOG_BASE + 13)
  211.     /*
  212.     * Initialization failed because the requested service %1
  213.     *  could not be started.
  214.    */
  215.  
  216. #define NELOG_Entries_Lost      (ERRLOG_BASE + 14)
  217.     /*
  218.     * Some entries in the error log were lost because of a buffer
  219.     * overflow.
  220.     */
  221.  
  222.  
  223. //
  224. //  Server specific error log messages from 20 to 40
  225. //
  226.  
  227. #define NELOG_Init_Seg_Overflow     (ERRLOG_BASE + 20)
  228.     /*
  229.     * Initialization parameters controlling resource usage other
  230.     *  than net buffers are sized so that too much memory is needed.
  231.     */
  232.  
  233. #define NELOG_Srv_No_Mem_Grow       (ERRLOG_BASE + 21)
  234.     /*
  235.     * The server cannot increase the size of a memory segment.
  236.     */
  237.  
  238. #define NELOG_Access_File_Bad       (ERRLOG_BASE + 22)
  239.     /*
  240.     * Initialization failed because account file %1 is either incorrect
  241.     * or not present.
  242.     */
  243.  
  244. #define NELOG_Srvnet_Not_Started    (ERRLOG_BASE + 23)
  245.     /*
  246.     * Initialization failed because network %1 was not started.
  247.     */
  248.  
  249. #define NELOG_Init_Chardev_Err      (ERRLOG_BASE + 24)
  250.     /*
  251.     * The server failed to start. Either all three chdev
  252.     *  parameters must be zero or all three must be nonzero.
  253.     */
  254.  
  255. #define NELOG_Remote_API        (ERRLOG_BASE + 25)
  256.     /* A remote API request was halted due to the following
  257.     * invalid description string: %1.
  258.     */
  259.  
  260. #define NELOG_Ncb_TooManyErr        (ERRLOG_BASE + 26)
  261.     /* The network %1 ran out of network control blocks (NCBs).  You may need to increase NCBs
  262.     * for this network.  The following information includes the
  263.     * number of NCBs submitted by the server when this error occurred:
  264.     */
  265.  
  266. #define NELOG_Mailslot_err      (ERRLOG_BASE + 27)
  267.     /* The server cannot create the %1 mailslot needed to send
  268.     * the ReleaseMemory alert message.  The error received is:
  269.     */
  270.  
  271. #define NELOG_ReleaseMem_Alert      (ERRLOG_BASE + 28)
  272.     /* The server failed to register for the ReleaseMemory alert,
  273.     * with recipient %1. The error code from
  274.     * NetAlertStart is the data.
  275.     */
  276.  
  277. #define NELOG_AT_cannot_write       (ERRLOG_BASE + 29)
  278.     /* The server cannot update the AT schedule file. The file
  279.     * is corrupted.
  280.     */
  281.  
  282. #define NELOG_Cant_Make_Msg_File    (ERRLOG_BASE + 30)
  283.     /* The server encountered an error when calling
  284.     * NetIMakeLMFileName. The error code is the data.
  285.     */
  286.  
  287. #define NELOG_Exec_Netservr_NoMem   (ERRLOG_BASE + 31)
  288.     /* Initialization failed because of a system execution failure on
  289.     * path %1. There is not enough memory to start the process.
  290.     * The system error code is the data.
  291.     */
  292.  
  293. #define NELOG_Server_Lock_Failure   (ERRLOG_BASE + 32)
  294.     /* Longterm lock of the server buffers failed.
  295.     * Check swap disk's free space and restart the system to start the server.
  296.     */
  297.  
  298. //
  299. //  Message service and POPUP specific error log messages from 40 to 55
  300. //
  301.  
  302. #define NELOG_Msg_Shutdown      (ERRLOG_BASE + 40)
  303.     /*
  304.     * The service has stopped due to repeated consecutive
  305.     *  occurrences of a network control block (NCB) error.  The last bad NCB follows
  306.     *  in raw data.
  307.     */
  308.  
  309. #define NELOG_Msg_Sem_Shutdown      (ERRLOG_BASE + 41)
  310.     /*
  311.     * The Message server has stopped due to a lock on the
  312.     *  Message server shared data segment.
  313.     */
  314.  
  315. #define NELOG_Msg_Log_Err       (ERRLOG_BASE + 50)
  316.     /*
  317.     * A file system error occurred while opening or writing to the
  318.     *  system message log file %1. Message logging has been
  319.     *  switched off due to the error. The error code is the data.
  320.     */
  321.  
  322.  
  323.  
  324. #define NELOG_VIO_POPUP_ERR     (ERRLOG_BASE + 51)
  325.     /*
  326.     * Unable to display message POPUP due to system VIO call error.
  327.     *  The error code is the data.
  328.     */
  329.  
  330. #define NELOG_Msg_Unexpected_SMB_Type   (ERRLOG_BASE + 52)
  331.     /*
  332.     * An illegal server message block (SMB) was received.  The SMB is the data.
  333.     */
  334.  
  335. //
  336. //  Workstation specific error log messages from 60 to 75
  337. //
  338.  
  339.  
  340. #define NELOG_Wksta_Infoseg     (ERRLOG_BASE + 60)
  341.     /*
  342.     * The workstation information segment is bigger than 64K.
  343.     *  The size follows, in DWORD format:
  344.     */
  345.  
  346. #define NELOG_Wksta_Compname        (ERRLOG_BASE + 61)
  347.     /*
  348.     * The workstation was unable to get the name-number of the computer.
  349.     */
  350.  
  351. #define NELOG_Wksta_BiosThreadFailure   (ERRLOG_BASE + 62)
  352.     /*
  353.     * The workstation could not initialize the Async NetBIOS Thread.
  354.     *  The error code is the data.
  355.     */
  356.  
  357. #define NELOG_Wksta_IniSeg      (ERRLOG_BASE + 63)
  358.     /*
  359.     * The workstation could not open the initial shared segment.
  360.     *  The error code is the data.
  361.     */
  362.  
  363. #define NELOG_Wksta_HostTab_Full    (ERRLOG_BASE + 64)
  364.     /*
  365.     * The workstation host table is full.
  366.     */
  367.  
  368. #define NELOG_Wksta_Bad_Mailslot_SMB    (ERRLOG_BASE + 65)
  369.     /*
  370.     * A bad mailslot server message block (SMB) was received.  The SMB is the data.
  371.     */
  372.  
  373. #define NELOG_Wksta_UASInit     (ERRLOG_BASE + 66)
  374.     /*
  375.     * The workstation encountered an error while trying to start the user accounts database.
  376.     *  The error code is the data.
  377.     */
  378.  
  379. #define NELOG_Wksta_SSIRelogon      (ERRLOG_BASE + 67)
  380.     /*
  381.     * The workstation encountered an error while responding to an SSI revalidation request.
  382.     *  The function code and the error codes are the data.
  383.     */
  384.  
  385. //
  386. //  Alerter service specific error log messages from 70 to 79
  387. //
  388.  
  389.  
  390. #define NELOG_Build_Name        (ERRLOG_BASE + 70)
  391.     /*
  392.     * The Alerter service had a problem creating the list of
  393.     * alert recipients.  The error code is %1.
  394.     */
  395.  
  396. #define NELOG_Name_Expansion        (ERRLOG_BASE + 71)
  397.     /*
  398.     * There was an error expanding %1 as a group name. Try
  399.     *  splitting the group into two or more smaller groups.
  400.     */
  401.  
  402. #define NELOG_Message_Send      (ERRLOG_BASE + 72)
  403.     /*
  404.     * There was an error sending %2 the alert message -
  405.     *  (
  406.     *  %3 )
  407.     *  The error code is %1.
  408.     */
  409.  
  410. #define NELOG_Mail_Slt_Err      (ERRLOG_BASE + 73)
  411.     /*
  412.     * There was an error in creating or reading the alerter mailslot.
  413.     *  The error code is %1.
  414.     */
  415.  
  416. #define NELOG_AT_cannot_read        (ERRLOG_BASE + 74)
  417.     /*
  418.     * The server could not read the AT schedule file.
  419.     */
  420.  
  421. #define NELOG_AT_sched_err      (ERRLOG_BASE + 75)
  422.     /*
  423.     * The server found an invalid AT schedule record.
  424.     */
  425.  
  426. #define NELOG_AT_schedule_file_created  (ERRLOG_BASE + 76)
  427.     /*
  428.     * The server could not find an AT schedule file so it created one.
  429.     */
  430.  
  431. #define NELOG_Srvnet_NB_Open        (ERRLOG_BASE + 77)
  432.     /*
  433.     * The server could not access the %1 network with NetBiosOpen.
  434.     */
  435.  
  436. #define NELOG_AT_Exec_Err       (ERRLOG_BASE + 78)
  437.     /*
  438.     * The AT command processor could not run %1.
  439.    */
  440.  
  441. //
  442. //      Cache Lazy Write and HPFS386 specific error log messages from 80 to 89
  443. //
  444.  
  445. #define NELOG_Lazy_Write_Err            (ERRLOG_BASE + 80)
  446.         /*
  447.         * WARNING:  Because of a lazy-write error, drive %1 now
  448.         *  contains some corrupted data.  The cache is stopped.
  449.         */
  450.  
  451. #define NELOG_HotFix            (ERRLOG_BASE + 81)
  452.     /*
  453.     * A defective sector on drive %1 has been replaced (hotfixed).
  454.     * No data was lost.  You should run CHKDSK soon to restore full
  455.     * performance and replenish the volume's spare sector pool.
  456.     *
  457.     * The hotfix occurred while processing a remote request.
  458.     */
  459.  
  460. #define NELOG_HardErr_From_Server   (ERRLOG_BASE + 82)
  461.     /*
  462.     * A disk error occurred on the HPFS volume in drive %1.
  463.     * The error occurred while processing a remote request.
  464.     */
  465.  
  466. #define NELOG_LocalSecFail1 (ERRLOG_BASE + 83)
  467.     /*
  468.     * The user accounts database (NET.ACC) is corrupted.  The local security
  469.     * system is replacing the corrupted NET.ACC with the backup
  470.     * made at %1.
  471.     * Any updates made to the database after this time are lost.
  472.     *
  473.     */
  474.  
  475. #define NELOG_LocalSecFail2 (ERRLOG_BASE + 84)
  476.     /*
  477.     * The user accounts database (NET.ACC) is missing.  The local
  478.     * security system is restoring the backup database
  479.     * made at %1.
  480.     * Any updates made to the database made after this time are lost.
  481.     *
  482.     */
  483.  
  484. #define NELOG_LocalSecFail3 (ERRLOG_BASE + 85)
  485.     /*
  486.     * Local security could not be started because the user accounts database
  487.     * (NET.ACC) was missing or corrupted, and no usable backup
  488.     * database was present.
  489.     *
  490.     * THE SYSTEM IS NOT SECURE.
  491.     */
  492.  
  493. #define NELOG_LocalSecGeneralFail   (ERRLOG_BASE + 86)
  494.     /*
  495.     * Local security could not be started because an error
  496.     * occurred during initialization. The error code returned is %1.
  497.     *
  498.     * THE SYSTEM IS NOT SECURE.
  499.     *
  500.     */
  501.  
  502. //
  503. //  NETWKSTA.SYS specific error log messages from 90 to 99
  504. //
  505.  
  506. #define NELOG_NetWkSta_Internal_Error   (ERRLOG_BASE + 90)
  507.     /*
  508.     * A NetWksta internal error has occurred:
  509.     *  %1
  510.     */
  511.  
  512. #define NELOG_NetWkSta_No_Resource  (ERRLOG_BASE + 91)
  513.     /*
  514.     * The redirector is out of a resource: %1.
  515.     */
  516.  
  517. #define NELOG_NetWkSta_SMB_Err      (ERRLOG_BASE + 92)
  518.     /*
  519.     * A server message block (SMB) error occurred on the connection to %1.
  520.     *  The SMB header is the data.
  521.     */
  522.  
  523. #define NELOG_NetWkSta_VC_Err       (ERRLOG_BASE + 93)
  524.     /*
  525.     * A virtual circuit error occurred on the session to %1.
  526.     *  The network control block (NCB) command and return code is the data.
  527.     */
  528.  
  529. #define NELOG_NetWkSta_Stuck_VC_Err (ERRLOG_BASE + 94)
  530.     /*
  531.     * Hanging up a stuck session to %1.
  532.     */
  533.  
  534. #define NELOG_NetWkSta_NCB_Err      (ERRLOG_BASE + 95)
  535.     /*
  536.     * A network control block (NCB) error occurred (%1).
  537.     *  The NCB is the data.
  538.     */
  539.  
  540. #define NELOG_NetWkSta_Write_Behind_Err (ERRLOG_BASE + 96)
  541.     /*
  542.     * A write operation to %1 failed.
  543.     *  Data may have been lost.
  544.     */
  545.  
  546. #define NELOG_NetWkSta_Reset_Err    (ERRLOG_BASE + 97)
  547.     /*
  548.     * Reset of driver %1 failed to complete the network control block (NCB).
  549.     *  The NCB is the data.
  550.     */
  551.  
  552. #define NELOG_NetWkSta_Too_Many     (ERRLOG_BASE + 98)
  553.     /*
  554.     * The amount of resource %1 requested was more
  555.     *  than the maximum. The maximum amount was allocated.
  556.     */
  557.  
  558. //
  559. //  Spooler specific error log messages from 100 to 103
  560. //
  561.  
  562. #define NELOG_Srv_Thread_Failure        (ERRLOG_BASE + 104)
  563.     /*
  564.     * The server could not create a thread.
  565.     *  The THREADS parameter in the CONFIG.SYS file should be increased.
  566.     */
  567.  
  568. #define NELOG_Srv_Close_Failure         (ERRLOG_BASE + 105)
  569.     /*
  570.     * The server could not close %1.
  571.     *  The file is probably corrupted.
  572.     */
  573.  
  574. #define NELOG_ReplUserCurDir               (ERRLOG_BASE + 106)
  575.     /*
  576.     *The replicator cannot update directory %1. It has tree integrity
  577.     * and is the current directory for some process.
  578.     */
  579.  
  580. #define NELOG_ReplCannotMasterDir       (ERRLOG_BASE + 107)
  581.     /*
  582.     *The server cannot export directory %1 to client %2.
  583.     * It is exported from another server.
  584.     */
  585.  
  586. #define NELOG_ReplUpdateError           (ERRLOG_BASE + 108)
  587.     /*
  588.     *The replication server could not update directory %2 from the source
  589.     * on %3 due to error %1.
  590.     */
  591.  
  592. #define NELOG_ReplLostMaster            (ERRLOG_BASE + 109)
  593.     /*
  594.     *Master %1 did not send an update notice for directory %2 at the expected
  595.     * time.
  596.     */
  597.  
  598. #define NELOG_NetlogonAuthDCFail        (ERRLOG_BASE + 110)
  599.     /*
  600.     *Failed to authenticate with %2, a Windows NT domain controller for domain %1.
  601.     */
  602.  
  603. #define NELOG_ReplLogonFailed           (ERRLOG_BASE + 111)
  604.     /*
  605.     *The replicator attempted to log on at %2 as %1 and failed.
  606.     */
  607.  
  608. #define NELOG_ReplNetErr            (ERRLOG_BASE + 112)
  609.     /*
  610.     *  Network error %1 occurred.
  611.     */
  612.  
  613. #define NELOG_ReplMaxFiles            (ERRLOG_BASE + 113)
  614.     /*
  615.     *  Replicator limit for files in a directory has been exceeded.
  616.     */
  617.  
  618.  
  619. #define NELOG_ReplMaxTreeDepth            (ERRLOG_BASE + 114)
  620.     /*
  621.     *  Replicator limit for tree depth has been exceeded.
  622.     */
  623.  
  624. #define NELOG_ReplBadMsg             (ERRLOG_BASE + 115)
  625.     /*
  626.     *  Unrecognized message received in mailslot.
  627.     */
  628.  
  629. #define NELOG_ReplSysErr            (ERRLOG_BASE + 116)
  630.     /*
  631.     *  System error %1 occurred.
  632.     */
  633.  
  634. #define NELOG_ReplUserLoged          (ERRLOG_BASE + 117)
  635.     /*
  636.     *  Cannot log on. User is currently logged on and argument TRYUSER
  637.     *  is set to NO.
  638.     */
  639.  
  640. #define NELOG_ReplBadImport           (ERRLOG_BASE + 118)
  641.     /*
  642.     *  IMPORT path %1 cannot be found.
  643.     */
  644.  
  645. #define NELOG_ReplBadExport           (ERRLOG_BASE + 119)
  646.     /*
  647.     *  EXPORT path %1 cannot be found.
  648.     */
  649.  
  650. #define NELOG_ReplSignalFileErr           (ERRLOG_BASE + 120)
  651.     /*
  652.     *  Replicator failed to update signal file in directory %2 due to
  653.     *  %1 system error.
  654.     */
  655.  
  656. #define NELOG_DiskFT                (ERRLOG_BASE+121)
  657.     /*
  658.     * Disk Fault Tolerance Error
  659.     *
  660.     * %1
  661.     */
  662.  
  663. #define NELOG_ReplAccessDenied           (ERRLOG_BASE + 122)
  664.     /*
  665.     *  Replicator could not access %2
  666.     *  on %3 due to system error %1.
  667.     */
  668.  
  669. #define NELOG_NetlogonFailedPrimary      (ERRLOG_BASE + 123)
  670.     /*
  671.     *The primary domain controller for domain %1 has apparently failed.
  672.     */
  673.  
  674. #define NELOG_NetlogonPasswdSetFailed (ERRLOG_BASE + 124)
  675.     /*
  676.     * Changing machine account password for account %1 failed with
  677.     * the following error: %n%2
  678.     */
  679.  
  680. #define NELOG_NetlogonTrackingError      (ERRLOG_BASE + 125)
  681.     /*
  682.     *An error occurred while updating the logon or logoff information for %1.
  683.     */
  684.  
  685. #define NELOG_NetlogonSyncError          (ERRLOG_BASE + 126)
  686.     /*
  687.     *An error occurred while synchronizing with primary domain controller %1
  688.     */
  689.  
  690. //
  691. //  UPS service specific error log messages from 130 to 135
  692. //
  693.  
  694. #define NELOG_UPS_PowerOut      (ERRLOG_BASE + 130)
  695.     /*
  696.     * A power failure was detected at the server.
  697.     */
  698.  
  699. #define NELOG_UPS_Shutdown      (ERRLOG_BASE + 131)
  700.     /*
  701.     * The UPS service performed server shut down.
  702.     */
  703.  
  704. #define NELOG_UPS_CmdFileError      (ERRLOG_BASE + 132)
  705.     /*
  706.     * The UPS service did not complete execution of the
  707.     * user specified shut down command file.
  708.     */
  709.  
  710. #define NELOG_UPS_CannotOpenDriver  (ERRLOG_BASE+133)
  711.     /*
  712.     * The UPS driver could not be opened.  The error code is
  713.     * the data.
  714.     */
  715.  
  716. #define NELOG_UPS_PowerBack     (ERRLOG_BASE + 134)
  717.     /*
  718.     * Power has been restored.
  719.     */
  720.  
  721. #define NELOG_UPS_CmdFileConfig     (ERRLOG_BASE + 135)
  722.     /*
  723.     * There is a problem with a configuration of user specified
  724.     * shut down command file.
  725.     */
  726.  
  727. #define NELOG_UPS_CmdFileExec       (ERRLOG_BASE + 136)
  728.     /*
  729.     * The UPS service failed to execute a user specified shutdown
  730.     * command file %1.  The error code is the data.
  731.     */
  732.  
  733. //
  734. //  Remoteboot server specific error log messages are from 150 to 157
  735. //
  736.  
  737. #define NELOG_Missing_Parameter     (ERRLOG_BASE + 150)
  738.     /*
  739.     * Initialization failed because of an invalid or missing
  740.     *  parameter in the configuration file %1.
  741.     */
  742.  
  743. #define NELOG_Invalid_Config_Line   (ERRLOG_BASE + 151)
  744.     /*
  745.     * Initialization failed because of an invalid line in the
  746.     *  configuration file %1. The invalid line is the data.
  747.     */
  748.  
  749. #define NELOG_Invalid_Config_File   (ERRLOG_BASE + 152)
  750.     /*
  751.     * Initialization failed because of an error in the configuration
  752.     *  file %1.
  753.     */
  754.  
  755. #define NELOG_File_Changed      (ERRLOG_BASE + 153)
  756.     /*
  757.     * The file %1 has been changed after initialization.
  758.     *  The boot-block loading was temporarily terminated.
  759.     */
  760.  
  761. #define NELOG_Files_Dont_Fit        (ERRLOG_BASE + 154)
  762.     /*
  763.     * The files do not fit to the boot-block configuration
  764.     * file %1. Change the BASE and ORG definitions or the order
  765.     * of the files.
  766.     */
  767.  
  768. #define NELOG_Wrong_DLL_Version     (ERRLOG_BASE + 155)
  769.     /*
  770.     * Initialization failed because the dynamic-link
  771.     *  library %1 returned an incorrect version number.
  772.     */
  773.  
  774. #define NELOG_Error_in_DLL      (ERRLOG_BASE + 156)
  775.     /*
  776.     * There was an unrecoverable error in the dynamic-
  777.     *  link library of the service.
  778.     */
  779.  
  780. #define NELOG_System_Error      (ERRLOG_BASE + 157)
  781.     /*
  782.     * The system returned an unexpected error code.
  783.     *  The error code is the data.
  784.     */
  785.  
  786. #define NELOG_FT_ErrLog_Too_Large (ERRLOG_BASE + 158)
  787.     /*
  788.     * The fault-tolerance error log file, LANROOT\LOGS\FT.LOG,
  789.     *  is more than 64K.
  790.     */
  791.  
  792. #define NELOG_FT_Update_In_Progress (ERRLOG_BASE + 159)
  793.     /*
  794.     * The fault-tolerance error-log file, LANROOT\LOGS\FT.LOG, had the
  795.     * update in progress bit set upon opening, which means that the
  796.     * system crashed while working on the error log.
  797.     */
  798.  
  799.  
  800. //
  801. // Microsoft has created a generic error log entry for OEMs to use to
  802. // log errors from OEM value added services.  The code, which is the
  803. // 2nd arg to NetErrorLogWrite, is 3299.  This value is manifest in
  804. // NET/H/ERRLOG.H as NELOG_OEM_Code.  The text for error log entry
  805. // NELOG_OEM_Code is:  "%1 %2 %3 %4 %5 %6 %7 %8 %9.".
  806. //
  807. // Microsoft suggests that OEMs use the insertion strings as follows:
  808. // %1:  OEM System Name (e.g. 3+Open)
  809. // %2:  OEM Service Name (e.g. 3+Mail)
  810. // %3:  Severity level (e.g.  error, warning, etc.)
  811. // %4:  OEM error log entry sub-identifier  (e.g. error code #)
  812. // %5 - % 9:  Text.
  813. //
  814. // The call to NetErrorWrite must set nstrings = 9, and provide 9
  815. // ASCIIZ strings.  If the caller does not have 9 insertion strings,
  816. // provide null strings for the empty insertion strings.
  817. //
  818.  
  819. #define NELOG_OEM_Code              (ERRLOG_BASE + 199)
  820.     /*
  821.     * %1 %2 %3 %4 %5 %6 %7 %8 %9.
  822.     */
  823.  
  824. //
  825. // another error log range defined for NT Lanman.
  826. //
  827.  
  828. #define ERRLOG2_BASE 5700        /* New NT NELOG errors start here */
  829.  
  830. #define NELOG_NetlogonSSIInitError              (ERRLOG2_BASE + 0)
  831.     /*
  832.      * The Netlogon service could not initialize the replication data
  833.      * structures successfully. The service was terminated.  The following
  834.      * error occurred: %n%1
  835.      */
  836.  
  837. #define NELOG_NetlogonFailedToUpdateTrustList   (ERRLOG2_BASE + 1)
  838.     /*
  839.      * The Netlogon service failed to update the domain trust list.  The
  840.      * following error occurred: %n%1
  841.      */
  842.  
  843. #define NELOG_NetlogonFailedToAddRpcInterface   (ERRLOG2_BASE + 2)
  844.     /*
  845.      * The Netlogon service could not add the RPC interface.  The
  846.      * service was terminated. The following error occurred: %n%1
  847.      */
  848.  
  849. #define NELOG_NetlogonFailedToReadMailslot      (ERRLOG2_BASE + 3)
  850.     /*
  851.      * The Netlogon service could not read a mailslot message from %1 due
  852.      * to the following error: %n%2
  853.      */
  854.  
  855. #define NELOG_NetlogonFailedToRegisterSC        (ERRLOG2_BASE + 4)
  856.     /*
  857.      * The Netlogon service failed to register the service with the
  858.      * service controller. The service was terminated. The following
  859.      * error occurred: %n%1
  860.      */
  861.  
  862. #define NELOG_NetlogonChangeLogCorrupt          (ERRLOG2_BASE + 5)
  863.     /*
  864.      * The change log cache maintained by the Netlogon service for
  865.      * database changes is corrupted. The Netlogon service is resetting
  866.      * the change log.
  867.      */
  868.  
  869. #define NELOG_NetlogonFailedToCreateShare       (ERRLOG2_BASE + 6)
  870.     /*
  871.      * The Netlogon service could not create server share %1.  The following
  872.      * error occurred: %n%2
  873.      */
  874.  
  875. #define NELOG_NetlogonDownLevelLogonFailed      (ERRLOG2_BASE + 7)
  876.     /*
  877.      * The down-level logon request for the user %1 from %2 failed.
  878.      */
  879.  
  880. #define NELOG_NetlogonDownLevelLogoffFailed     (ERRLOG2_BASE + 8)
  881.     /*
  882.      * The down-level logoff request for the user %1 from %2 failed.
  883.      */
  884.  
  885. #define NELOG_NetlogonNTLogonFailed             (ERRLOG2_BASE + 9)
  886.     /*
  887.      * The Windows NT %1 logon request for the user %2\%3 from %4 (via %5)
  888.      * failed.
  889.      */
  890.  
  891. #define NELOG_NetlogonNTLogoffFailed            (ERRLOG2_BASE + 10)
  892.     /*
  893.      * The Windows NT %1 logoff request for the user %2\%3 from %4
  894.      * failed.
  895.      */
  896.  
  897. #define NELOG_NetlogonPartialSyncCallSuccess    (ERRLOG2_BASE + 11)
  898.     /*
  899.      * The partial synchronization request from the server %1 completed
  900.      * successfully. %2 changes(s) has(have) been returned to the
  901.      * caller.
  902.      */
  903.  
  904. #define NELOG_NetlogonPartialSyncCallFailed     (ERRLOG2_BASE + 12)
  905.     /*
  906.      * The partial synchronization request from the server %1 failed with
  907.      * the following error: %n%2
  908.      */
  909.  
  910. #define NELOG_NetlogonFullSyncCallSuccess       (ERRLOG2_BASE + 13)
  911.     /*
  912.      * The full synchronization request from the server %1 completed
  913.      * successfully. %2 object(s) has(have) been returned to
  914.      * the caller.
  915.      */
  916.  
  917. #define NELOG_NetlogonFullSyncCallFailed        (ERRLOG2_BASE + 14)
  918.     /*
  919.      * The full synchronization request from the server %1 failed with
  920.      * the following error: %n%2
  921.      */
  922.  
  923. #define NELOG_NetlogonPartialSyncSuccess        (ERRLOG2_BASE + 15)
  924.     /*
  925.      * The partial synchronization replication of the %1 database from the
  926.      * primary domain controller %2 completed successfully. %3 change(s) is(are)
  927.      * applied to the database.
  928.      */
  929.  
  930.  
  931. #define NELOG_NetlogonPartialSyncFailed         (ERRLOG2_BASE + 16)
  932.     /*
  933.      * The partial synchronization replication of the %1 database from the
  934.      * primary domain controller %2 failed with the following error: %n%3
  935.      */
  936.  
  937. #define NELOG_NetlogonFullSyncSuccess           (ERRLOG2_BASE + 17)
  938.     /*
  939.      * The full synchronization replication of the %1 database from the
  940.      * primary domain controller %2 completed successfully.
  941.      */
  942.  
  943.  
  944. #define NELOG_NetlogonFullSyncFailed            (ERRLOG2_BASE + 18)
  945.     /*
  946.      * The full synchronization replication of the %1 database from the
  947.      * primary domain controller %2 failed with the following error: %n%3
  948.      */
  949.  
  950. #define NELOG_NetlogonAuthNoDomainController    (ERRLOG2_BASE + 19)
  951.     /*
  952.      * No Windows NT Domain Controller is available for domain %1.
  953.      * (This event is expected and can be ignored when booting with
  954.      * the 'No Net' Hardware Profile.)  The following error occurred:%n%2
  955.      */
  956.  
  957. #define NELOG_NetlogonAuthNoTrustLsaSecret      (ERRLOG2_BASE + 20)
  958.     /*
  959.      * The session setup to the Windows NT Domain Controller %1 for the domain %2
  960.      * failed because the computer %3 does not have a local security database account.
  961.      */
  962.  
  963. #define NELOG_NetlogonAuthNoTrustSamAccount     (ERRLOG2_BASE + 21)
  964.     /*
  965.      * The session setup to the Windows NT Domain Controller %1 for the domain %2
  966.      * failed because the Windows NT Domain Controller does not have an account
  967.      * for the computer %3.
  968.      */
  969.  
  970. #define NELOG_NetlogonServerAuthFailed          (ERRLOG2_BASE + 22)
  971.     /*
  972.      * The session setup from the computer %1 failed to authenticate.
  973.      * The name of the account referenced in the security database is
  974.      * %2.  The following error occurred: %n%3
  975.      */
  976.  
  977. #define NELOG_NetlogonServerAuthNoTrustSamAccount (ERRLOG2_BASE + 23)
  978.     /*
  979.      * The session setup from the computer %1 failed because there is
  980.      * no trust account in the security database for this computer. The name of
  981.      * the account referenced in the security database is %2.
  982.      */
  983.  
  984. //
  985. // General log messages for NT services.
  986. //
  987.  
  988. #define NELOG_FailedToRegisterSC                  (ERRLOG2_BASE + 24)
  989.     /*
  990.      * Could not register control handler with service controller %1.
  991.      */
  992.  
  993. #define NELOG_FailedToSetServiceStatus            (ERRLOG2_BASE + 25)
  994.     /*
  995.      * Could not set service status with service controller %1.
  996.      */
  997.  
  998. #define NELOG_FailedToGetComputerName             (ERRLOG2_BASE + 26)
  999.     /*
  1000.      * Could not find the computer name %1.
  1001.      */
  1002.  
  1003. #define NELOG_DriverNotLoaded                     (ERRLOG2_BASE + 27)
  1004.     /*
  1005.      * Could not load %1 device driver.
  1006.      */
  1007.  
  1008. #define NELOG_NoTranportLoaded                    (ERRLOG2_BASE + 28)
  1009.     /*
  1010.      * Could not load any transport.
  1011.      */
  1012.  
  1013. //
  1014. // More Netlogon service events
  1015. //
  1016.  
  1017. #define NELOG_NetlogonFailedDomainDelta           (ERRLOG2_BASE + 29)
  1018.     /*
  1019.      * Replication of the %1 Domain Object "%2" from primary domain controller
  1020.      * %3 failed with the following error: %n%4
  1021.      */
  1022.  
  1023. #define NELOG_NetlogonFailedGlobalGroupDelta      (ERRLOG2_BASE + 30)
  1024.     /*
  1025.      * Replication of the %1 Global Group "%2" from primary domain controller
  1026.      * %3 failed with the following error: %n%4
  1027.      */
  1028.  
  1029. #define NELOG_NetlogonFailedLocalGroupDelta       (ERRLOG2_BASE + 31)
  1030.     /*
  1031.      * Replication of the %1 Local Group "%2" from primary domain controller
  1032.      * %3 failed with the following error: %n%4
  1033.      */
  1034.  
  1035. #define NELOG_NetlogonFailedUserDelta             (ERRLOG2_BASE + 32)
  1036.     /*
  1037.      * Replication of the %1 User "%2" from primary domain controller
  1038.      * %3 failed with the following error: %n%4
  1039.      */
  1040.  
  1041. #define NELOG_NetlogonFailedPolicyDelta           (ERRLOG2_BASE + 33)
  1042.     /*
  1043.      * Replication of the %1 Policy Object "%2" from primary domain controller
  1044.      * %3 failed with the following error: %n%4
  1045.      */
  1046.  
  1047. #define NELOG_NetlogonFailedTrustedDomainDelta    (ERRLOG2_BASE + 34)
  1048.     /*
  1049.      * Replication of the %1 Trusted Domain Object "%2" from primary domain controller
  1050.      * %3 failed with the following error: %n%4
  1051.      */
  1052.  
  1053. #define NELOG_NetlogonFailedAccountDelta          (ERRLOG2_BASE + 35)
  1054.     /*
  1055.      * Replication of the %1 Account Object "%2" from primary domain controller
  1056.      * %3 failed with the following error: %n%4
  1057.      */
  1058.  
  1059. #define NELOG_NetlogonFailedSecretDelta           (ERRLOG2_BASE + 36)
  1060.     /*
  1061.      * Replication of the %1 Secret "%2" from primary domain controller
  1062.      * %3 failed with the following error: %n%4
  1063.      */
  1064.  
  1065. #define NELOG_NetlogonSystemError                 (ERRLOG2_BASE + 37)
  1066.     /*
  1067.     * The system returned the following unexpected error code: %n%1
  1068.     */
  1069.  
  1070. #define NELOG_NetlogonDuplicateMachineAccounts    (ERRLOG2_BASE + 38)
  1071.     /*
  1072.     * Netlogon has detected two machine accounts for server "%1".
  1073.     * The server can be either a Windows NT Server that is a member of the
  1074.     * domain or the server can be a LAN Manager server with an account in the
  1075.     * SERVERS global group.  It cannot be both.
  1076.     */
  1077.  
  1078. #define NELOG_NetlogonTooManyGlobalGroups         (ERRLOG2_BASE + 39)
  1079.     /*
  1080.     * This domain has more global groups than can be replicated to a LanMan
  1081.     * BDC.  Either delete some of your global groups or remove the LanMan
  1082.     * BDCs from the domain.
  1083.     */
  1084.  
  1085. #define NELOG_NetlogonBrowserDriver               (ERRLOG2_BASE + 40)
  1086.     /*
  1087.     * The Browser driver returned the following error to Netlogon: %n%1
  1088.     */
  1089.  
  1090. #define NELOG_NetlogonAddNameFailure              (ERRLOG2_BASE + 41)
  1091.     /*
  1092.     * Netlogon could not register the %1<1B> name for the following reason: %n%2
  1093.     */
  1094.  
  1095. //
  1096. //  More Remoteboot service events.
  1097. //
  1098. #define NELOG_RplMessages                         (ERRLOG2_BASE + 42)
  1099.     /*
  1100.     * Service failed to retrieve messages needed to boot remote boot clients.
  1101.     */
  1102.  
  1103. #define NELOG_RplXnsBoot                          (ERRLOG2_BASE + 43)
  1104.     /*
  1105.     * Service experienced a severe error and can no longer provide remote boot
  1106.     * for 3Com 3Start remote boot clients.
  1107.     */
  1108.  
  1109. #define NELOG_RplSystem                           (ERRLOG2_BASE + 44)
  1110.     /*
  1111.     * Service experienced a severe system error and will shut itself down.
  1112.     */
  1113.  
  1114. #define NELOG_RplWkstaTimeout                     (ERRLOG2_BASE + 45)
  1115.     /*
  1116.     * Client with computer name %1 failed to acknowledge receipt of the
  1117.     * boot data.  Remote boot of this client was not completed.
  1118.     */
  1119.  
  1120. #define NELOG_RplWkstaFileOpen                    (ERRLOG2_BASE + 46)
  1121.     /*
  1122.     * Client with computer name %1 was not booted due to an error in opening
  1123.     * file %2.
  1124.     */
  1125.  
  1126. #define NELOG_RplWkstaFileRead                    (ERRLOG2_BASE + 47)
  1127.     /*
  1128.     * Client with computer name %1 was not booted due to an error in reading
  1129.     * file %2.
  1130.     */
  1131.  
  1132. #define NELOG_RplWkstaMemory                      (ERRLOG2_BASE + 48)
  1133.     /*
  1134.     * Client with computer name %1 was not booted due to insufficent memory
  1135.     * at the remote boot server.
  1136.     */
  1137.  
  1138. #define NELOG_RplWkstaFileChecksum                (ERRLOG2_BASE + 49)
  1139.     /*
  1140.     * Client with computer name %1 will be booted without using checksums
  1141.     * because checksum for file %2 could not be calculated.
  1142.     */
  1143.  
  1144. #define NELOG_RplWkstaFileLineCount               (ERRLOG2_BASE + 50)
  1145.     /*
  1146.     * Client with computer name %1 was not booted due to too many lines in
  1147.     * file %2.
  1148.     */
  1149.  
  1150. #define NELOG_RplWkstaBbcFile                     (ERRLOG2_BASE + 51)
  1151.     /*
  1152.     * Client with computer name %1 was not booted because the boot block
  1153.     * configuration file %2 for this client does not contain boot block
  1154.     * line and/or loader line.
  1155.     */
  1156.  
  1157. #define NELOG_RplWkstaFileSize                    (ERRLOG2_BASE + 52)
  1158.     /*
  1159.     * Client with computer name %1 was not booted due to a bad size of
  1160.     * file %2.
  1161.     */
  1162.  
  1163. #define NELOG_RplWkstaInternal                    (ERRLOG2_BASE + 53)
  1164.     /*
  1165.     * Client with computer name %1 was not booted due to remote boot
  1166.     * service internal error.
  1167.     */
  1168.  
  1169. #define NELOG_RplWkstaWrongVersion                (ERRLOG2_BASE + 54)
  1170.     /*
  1171.     * Client with computer name %1 was not booted because file %2 has an
  1172.     * invalid boot header.
  1173.     */
  1174.  
  1175. #define NELOG_RplWkstaNetwork                     (ERRLOG2_BASE + 55)
  1176.     /*
  1177.     * Client with computer name %1 was not booted due to network error.
  1178.     */
  1179.  
  1180. #define NELOG_RplAdapterResource                  (ERRLOG2_BASE + 56)
  1181.     /*
  1182.     * Client with adapter id %1 was not booted due to lack of resources.
  1183.     */
  1184.  
  1185. #define NELOG_RplFileCopy                         (ERRLOG2_BASE + 57)
  1186.     /*
  1187.     * Service experienced error copying file or directory %1.
  1188.     */
  1189.  
  1190. #define NELOG_RplFileDelete                       (ERRLOG2_BASE + 58)
  1191.     /*
  1192.     * Service experienced error deleting file or directory %1.
  1193.     */
  1194.  
  1195. #define NELOG_RplFilePerms                        (ERRLOG2_BASE + 59)
  1196.     /*
  1197.     * Service experienced error setting permissions on file or directory %1.
  1198.     */
  1199. #define NELOG_RplCheckConfigs                     (ERRLOG2_BASE + 60)
  1200.     /*
  1201.     * Service experienced error evaluating RPL configurations.
  1202.     */
  1203. #define NELOG_RplCreateProfiles                   (ERRLOG2_BASE + 61)
  1204.     /*
  1205.     * Service experienced error creating RPL profiles for all configurations.
  1206.     */
  1207. #define NELOG_RplRegistry                         (ERRLOG2_BASE + 62)
  1208.     /*
  1209.     * Service experienced error accessing registry.
  1210.     */
  1211. #define NELOG_RplReplaceRPLDISK                   (ERRLOG2_BASE + 63)
  1212.     /*
  1213.     * Service experienced error replacing possibly outdated RPLDISK.SYS.
  1214.     */
  1215. #define NELOG_RplCheckSecurity                    (ERRLOG2_BASE + 64)
  1216.     /*
  1217.     * Service experienced error adding security accounts or setting
  1218.     * file permissions.  These accounts are the RPLUSER local group
  1219.     * and the user accounts for the individual RPL workstations.
  1220.     */
  1221. #define NELOG_RplBackupDatabase                   (ERRLOG2_BASE + 65)
  1222.     /*
  1223.     * Service failed to back up its database.
  1224.     */
  1225. #define NELOG_RplInitDatabase                     (ERRLOG2_BASE + 66)
  1226.     /*
  1227.     * Service failed to initialize from its database.  The database may be
  1228.     * missing or corrupted.  Service will attempt restoring the database
  1229.     * from the backup.
  1230.     */
  1231. #define NELOG_RplRestoreDatabaseFailure           (ERRLOG2_BASE + 67)
  1232.     /*
  1233.     * Service failed to restore its database from the backup.  Service
  1234.     * will not start.
  1235.     */
  1236. #define NELOG_RplRestoreDatabaseSuccess           (ERRLOG2_BASE + 68)
  1237.     /*
  1238.     * Service sucessfully restored its database from the backup.
  1239.     */
  1240. #define NELOG_RplInitRestoredDatabase             (ERRLOG2_BASE + 69)
  1241.     /*
  1242.     * Service failed to initialize from its restored database.  Service
  1243.     * will not start.
  1244.     */
  1245.  
  1246. //
  1247. // More Netlogon and RPL service events
  1248. //
  1249. #define NELOG_NetlogonSessionTypeWrong            (ERRLOG2_BASE + 70)
  1250.     /*
  1251.      * The session setup to the Windows NT Domain Controller %1 from computer
  1252.      * %2 using account %4 failed.  %2 is declared to be a BDC in domain %3.
  1253.      * However, %2 tried to connect as either a DC in a trusted domain,
  1254.      * a member workstation in domain %3, or as a server in domain %3.
  1255.      * Use the Server Manager to remove the BDC account for %2.
  1256.      */
  1257. #define NELOG_RplUpgradeDBTo40                    (ERRLOG2_BASE + 71)
  1258.     /*
  1259.     * The remoteboot database was in NT 3.5 / NT 3.51 format and NT is
  1260.     * attempting to convert it to NT 4.0 format. The JETCONV converter
  1261.     * will write to the Application event log when it is finished.
  1262.     */
  1263.  
  1264. #ifdef __cplusplus
  1265. }
  1266. #endif
  1267.  
  1268. #pragma option pop
  1269. #endif // _LMERRLOG_
  1270.